Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
datastore-level
Advanced tools
Datastore implementation with levelup backend.
$ npm install datastore-level
The type definitions for this package are available on http://definitelytyped.org/. To install just use:
$ npm install -D @types/datastore-level
const LevelStore = require('datastore-level')
// Default using level as backend for node or the browser
const store = new LevelStore('path/to/store')
// another leveldown compliant backend like memdown
const memStore = new LevelStore('my/mem/store', {
db: require('level-mem')
})
LevelStore
uses the level
module to automatically use level.js
if a modern bundler is used which can detect bundle targets based on the pkg.browser
property in your package.json
.
If you are using a bundler that does not support pkg.browser
, you will need to handle the shimming yourself, as was the case with versions of LevelStore
0.7.0 and earlier.
level-js@3
changed the database prefix from IDBWrapper-
to level-js-
, so please specify the old prefix if you wish to continue using databases created using datastore-level
prior to v0.12.0
. E.g.
const leveljs = require('level-js')
const browserStore = new LevelStore('my/db/name', {
db: (path) => leveljs(path, {
prefix: 'IDBWrapper-'
})
})
More information: https://github.com/Level/level-js/blob/master/UPGRADING.md#new-database-prefix
Feel free to join in. All welcome. Open an issue!
This repository falls under the IPFS Code of Conduct.
FAQs
Datastore implementation with level(up|down) backend
We found that datastore-level demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.